home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
window
/
tegl
/
intropak
/
simmouse.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-04-06
|
361 b
|
26 lines
/* -- This program draws a frame then waits for a mouse button to be pressed */
/* -- then disposes of it. */
#include "teglsys.h"
void main(void)
{
easytegl();
easyout();
pushimage(1,1,100,100);
shadowbox(1,1,100,100);
showmouse();
while (mouse_buttons == 0) ;
popimage();
teglsupervisor();
}